Wednesday, February 25, 2015

arg




        <form action="process.php" method="post">
            First name : <input type="text" name="fname" autofocus  />
            <br/>
            Age : <input type="number" name="age" id="a" max="100" min="0"/>
            <br/>
            Email : <input type="email" name="email" required/>
            <br/>
            Order id: <input type="text" name="order" pattern="[0-9]{2}{A-Z}{3}" title="2 digits and then 3 letters"/>
            <br/>
            Password : <input type="password" name="pass" required/>
            <br/>
            <input type="submit" value="send" onclick="checkAge()"/>
            



----

function checkAge()
{
    var age = document.getElementById('a');
    if(age.value >= 1 && age.value <=17)
        {
            alert("you are a minor");
            
        }
    else{
        alert("you are an adult")
    }
    
}



-----------


input {
    border:solid 2px
}
input:valid {
    border:solid 2px;
    border-color:blue;   
}
input:invalid{
    border:solid 1px;
    border-color:red;
}

Post a Comment

Whatsapp Button works on Mobile Device only

Start typing and press Enter to search